Learn more than you ever wanted to know about tail recursion from the jargon file 的知识,您可以从中学到比您曾想学到的更多。
For a good discussion of tail recursion and its conversion to iteration , check out the 欲详细了解尾递归及其到迭代的转换,请参阅
Can your jit transform tail recursion on code while preserving language semantics 清单4 .您的jit会在保持语言语义的同时转换尾递归代码吗?
Although the manual is , of course , written for common lisp , the discussion on tail recursion is applicable to other languages , including the java language 虽然这本手册是(当然是)为common lisp写的,但其中关于尾递归的讨论也适用于其他语言,包括java语言。
tail recursionとは意味:末尾再帰{まつび さいき} tail recursion meaning:[Computer] < programming > When the last thing a function (or procedure) does is to call itself. Such a function is called tail recursive. A function may make several recursive calls but a...